Applet Locator Status Values
When theJMNewAppletLocator
function has retrieved an HTML document, it passes a status value to theMyFetchCompleted
callback function. These status values are specified by theJMLocatorErrors
type.
enum JMLocatorErrors { eLocatorNoErr = 0, eHostNotFound, eFileNotFound, eLocatorTimeout, eLocatorKilled };Constant descriptions
See the description of the application-defined function
eLocatorNoErr
- The HTML text was retrieved successfully.
eHostNotFound
- The host specified by the URL was not found.
eFileNotFound
- The HTML file was not found on the host.
eLocatorTimeout
- A timeout occurred while waiting for the HTML text.
eLocatorKilled
- The
JMDisposeAppletLocator
function was called before the text could be retrieved.
MyFetchCompleted
for more information about using these values.